home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / urwfonts-1.0.tar.gz / urwfonts-1.0.tar / urwfonts-1.0 / Makefile < prev    next >
Makefile  |  1993-05-22  |  677b  |  35 lines

  1. # Makefile for the URW fonts.
  2.  
  3. version = 1.0
  4.  
  5. AFM2TFM = afm2tfm
  6. VPTOVF = vptovf
  7.  
  8. .PRECIOUS: %.vpl
  9.  
  10. tfm_files = uaqrrc.tfm ugqb.tfm unmr.tfm unmrs.tfm
  11.  
  12. all: $(tfm_files)
  13. # Make the raw TFM file as well as the VPL file.
  14. %.vpl: %.afm
  15.     $(AFM2TFM) $< -v $@ r$*
  16.  
  17. # Make the VF file as well as the TFM file.
  18. %.tfm: %.vpl
  19.     $(VPTOVF) $< $*.vf $@
  20.  
  21. distclean clean mostlyclean:
  22.     rm -f *.dvi *.log *.vpl *.ps
  23.  
  24. realclean: distclean
  25.     rm -f *.vf *.tfm
  26.  
  27. dist_files = ChangeLog Makefile README psfonts.add *.tfm *.vf *.afm *.pfa
  28. distdir = urwfonts-$(version)
  29. dist: all
  30.     rm -rf $(distdir)
  31.     mkdir $(distdir)
  32.     ln $(dist_files) $(distdir)
  33.     GZIP=-9 tar czf $(distdir). $(distdir)
  34.     rm -rf $(distdir)
  35.